home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / ACOSH.C < prev    next >
C/C++ Source or Header  |  1991-03-10  |  85b  |  7 lines

  1. #include <math.h>
  2.  
  3. double acosh(double x)
  4. {
  5.   return log(x + sqrt(x*x - 1));
  6. }
  7.